/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(to right, rgb(204, 162, 95), rgb(165, 154, 136));
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Wrapper */
.wrapper {
  display: flex;
  max-width: 900px;
  width: 100%;
  background-color: #aa722d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  overflow: hidden;
}

/* Left Image Side */
.image-side {
  flex: 1;
  background-image: url('images/fron.1.jpg'); /* make sure this path is correct */
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

/* Right Form Side */
.form-side {
  flex: 1;
  padding: 50px 40px;
  background-color: #fffaf4;
}

/* Heading */
.form-side h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  color: #5a3e36; /* warm dark brown */
  margin-bottom: 30px;
  text-align: center;
}

/* Labels */
label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  color: #5a3e36;
  display: block;
  margin-bottom: 6px;
}

/* Inputs */
input {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #d7ccc8;
  border-radius: 8px;
  background-color: #fffaf4;
  margin-bottom: 20px;
  color: #3e2723;
  font-family: 'Cormorant Garamond', serif;
}

/* Button */
button {
  width: 100%;
  padding: 12px;
  background-color: #5a3e36;
  color: #fff8e1;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #6d4c41;
}

/* Login Link */
.login-link {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: #5a3e36;
  font-family: 'Cormorant Garamond', serif;
}

.login-link a {
  color: #a1887f;
  text-decoration: none;
  font-style: italic;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
  }

  .image-side {
    height: 220px;
  }

  .form-side {
    padding: 30px 25px;
  }
}
